import { PropsWithChildren } from 'react';

const Layout = ({ children }: PropsWithChildren) => {
  return children;
};

export default Layout;
